home *** CD-ROM | disk | FTP | other *** search
/ Your Mobile: Alcatel / Alcatel 2005.iso / Alcatel One Touch 715 / data1.cab / Creation_Studio_Data / csGraph.dxr / 00048_boucle studio.ls < prev    next >
Encoding:
Text File  |  2002-06-21  |  494 b   |  20 lines

  1. global gAnimEnCours, gIdxAnim, gTimerAnim, gListeAnimSelect, gFormat
  2.  
  3. on exitFrame me
  4.   if gAnimEnCours then
  5.     if the timer >= (gTimerAnim + gListeAnimSelect[gIdxAnim].timing) then
  6.       gIdxAnim = gIdxAnim + 1
  7.       if gIdxAnim > gFormat[3] then
  8.         gIdxAnim = 1
  9.       else
  10.         if gListeAnimSelect[gIdxAnim].nom = 0 then
  11.           gIdxAnim = 1
  12.         end if
  13.       end if
  14.       sendAllSprites(#focus, gIdxAnim, 1)
  15.       gTimerAnim = the timer
  16.     end if
  17.   end if
  18.   go(the frame)
  19. end
  20.